The tables can be generated via the script "R3F_ARTY_AND_LOG\R3F_ARTY\calcul_balistique\generer_table.sqf". Read the header of this file for more informations.
One you generate the table, save it in a text file in the directory "R3F_ARTY_AND_LOG\R3F_ARTY\tables\".
Then add an include line in the variable "R3F_ARTY_tables" in the file "R3F_ARTY_AND_LOG\R3F_ARTY\init.sqf".

Les tables peuvent tre gnres grce au script "R3F_ARTY_AND_LOG\R3F_ARTY\calcul_balistique\generer_table.sqf". Consulter l'en-tte de ce fichier pour plus d'informations.
Une fois que vous avez gnrer la table, enregistrez l dans un fichier texte dans le rpertoire "R3F_ARTY_AND_LOG\R3F_ARTY\tables\".
Ensuite ajoutez une ligne d'inclusion dans la variable "R3F_ARTY_tables" du fichier "R3F_ARTY_AND_LOG\R3F_ARTY\init.sqf".

Les fichiers de table doivent respecter le format suivant :
The table files must respect the folowing format :

[
    // Mta-donnes (meta-data)
    [
        vitesse initiale, (initial velocity)
        coef frottement, (friction coef)
        [liste des altitudes d'impact], // ordonn croissant (list of impact altitudes, ascendant sorted)
        [liste des angles correspondants aux indices dans les tableaux qui suivent] // ordonn croissant (liste of angles, ascendant sorted)
    ],
    // Donnes  (data)
    [
        [porte arrondie  l'infrieur pour chaque angle pour la premire altitude d'impact], (floored range for each angle for the first impact altitude)
        [porte arrondie  l'infrieur pour chaque angle pour la deuxime altitude d'impact], (floored range for each angle for the second impact altitude)
        ...
    ]
]